body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: min(95%, 560px);
    max-width: 560px;
    margin: 0 auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
}

.logo {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 320px;
}

.container form {
    width: 100%;
    height: auto;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.captchaImg-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#captchaImage {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
}

.message-btn {
    display: none;
    width: 100%;
    min-height: 50px;
    padding: var(--space-8px);
    font-size: var(--fs-pp);
    border: 2px solid var(--error);
    border-left-width: 4px;
    background-color: #8900473f;
}

a {
    text-align: center;
}

.submit-btn {
    width: 100%;
    max-width: 280px;
    min-height: 40px;
    border-radius: 8px;
    display: flex;
    align-self: center;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.2s;
}

.submit-btn:hover {
    transform: translate(0px, 2px);
    box-shadow: 3px 4px 5px 0px #0005;
}

.input-form:disabled,
.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

#refreshButton {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 0;
    display: flex;
    transition: ease-in-out 0.2s;
}

#refreshButton:hover {
    transform: translate(-2px);
    box-shadow: 3px 4px 5px 0px #0005;
}

#refreshButton img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.input-item-group {
    display: flex;
    flex-direction: row;
    gap:var(--space-8px);
}

#showPasswordBtn {
    width: 10%;
    height: auto;
}

@media (max-width: 768px) {
    .container {
        width: min(95%, 440px);
    }

    .container form {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(95%, 360px);
    }

    .container form {
        padding: 22px;
    }

    .logo img {
        width: 100%;
    }
}